home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / inplcefx.sql < prev    next >
Text File  |  2000-05-12  |  737b  |  19 lines

  1. /* RCSVER $Id: inplcefx.sql,v 1.2 1999-02-24 14:15:44-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        inplcefx.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the inplcefx table. This table defines the
  9. *        available types of display effects for the
  10. *        customer display (in-place effects).   
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE inplcefx
  14. (
  15.     effect  NUMBER(38),    /* ID of this effect */
  16.         descr   VARCHAR2(30),    /* Description of effect */
  17.                 CONSTRAINT pk_inplcefx PRIMARY KEY (effect)
  18. );
  19.